home *** CD-ROM | disk | FTP | other *** search
/ Computer Shopper 235 / Issue 235 - September 2007 - DPCS0907DVD.ISO / Microsoft / Expression Blend / Blend.en.msi / Sparkle.Viewer3D.Viewer3D.xaml.cs.en < prev    next >
Encoding:
Text File  |  2007-01-30  |  531 b   |  25 lines

  1. ∩╗┐using System;
  2. using System.IO;
  3. using System.Net;
  4. using System.Windows;
  5. using System.Windows.Controls;
  6. using System.Windows.Data;
  7. using System.Windows.Media;
  8. using System.Windows.Media.Animation;
  9. using System.Windows.Navigation;
  10.  
  11. namespace Viewer3D
  12. {
  13.     public partial class Viewer3DWindow
  14.     {
  15.         public Viewer3DWindow()
  16.         {
  17.             this.InitializeComponent();
  18.         }
  19.  
  20.         private void OnExit(object sender, RoutedEventArgs e)
  21.         {
  22.             this.Close();
  23.         }
  24.     }
  25. }